home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / ocucmnd.sql < prev    next >
Text File  |  2000-05-12  |  828b  |  22 lines

  1. /* RCSVER $Id: ocucmnd.sql,v 1.3 1999-02-24 14:58:19-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        ocucmnd.sql 
  6. * Date:        01/18/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the ocucmnd table. This table contains all commands
  9. *        that can be associated with an OCU key.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE ocucmnd
  13. (
  14.     id        NUMBER(38),    /* ID of command */
  15.     sec_level    NUMBER(38),    /* Security level associated */
  16.     descr        VARCHAR2(20),    /* Description of command */
  17.     config_num    NUMBER(38)
  18.         CONSTRAINT ref_ocucmnd REFERENCES configset(num)
  19.         ON DELETE CASCADE,
  20.     CONSTRAINT pk_ocucmnd PRIMARY KEY (id, config_num)
  21. );
  22.